Show / Hide Table of Contents

Class ClusterConfigurationDetails

The HPC cluster configuration requested when launching instances of a cluster network.
If the parameter is provided, instances will only be placed within the HPC island and list of network blocks that you specify. If a list of network blocks are missing or not provided, the instances will be placed in any HPC blocks in the HPC island that you specify. If the values of HPC island or network block that you provide are not valid, an error is returned.

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

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 network block OCIDs.

In this article
Back to top