Show / Hide Table of Contents

Class ComputeHpcIsland

A compute HPC island.

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

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

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 HPC island.

Remarks

Required

LifecycleState

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

The current state of the compute HPC island.

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 HPC island 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 HPC island was updated, in the format defined by RFC3339.
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

TotalComputeBareMetalHostCount

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

The total number of compute bare metal hosts located in this compute HPC island.

Remarks

Required

In this article
Back to top