Show / Hide Table of Contents

Class ClusterConfigDetails

The HPC cluster configuration requested when launching instances in a compute capacity reservation.
If the parameter is provided, the reservation is created with the HPC island and a list of HPC blocks that you specify. If a list of HPC blocks are missing or not provided, the reservation is created with any HPC blocks in the HPC island that you specify. If the values of HPC island or HPC block that you provide are not valid, an error is returned.

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

Properties

HpcIslandId

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

The OCID of the HPC island.

Remarks

Required

NetworkBlockIds

Declaration
[JsonProperty(PropertyName = "networkBlockIds")]
public List<string> NetworkBlockIds { get; set; }
Property Value
Type Description
List<string>

The list of OCIDs of the network blocks.

In this article
Back to top