Class NodeTypeShapeConfig
Shape configuration at node type level. Start cluster will start all nodes as is if no config is specified.
Inherited Members
Namespace: Oci.BdsService.Models
Assembly: OCI.DotNetSDK.Bds.dll
Syntax
public class NodeTypeShapeConfigProperties
NodeType
Declaration
[Required(ErrorMessage = "NodeType is required.")]
[JsonProperty(PropertyName = "nodeType")]
[JsonConverter(typeof(StringEnumConverter))]
public Node.NodeTypeEnum? NodeType { get; set; }Property Value
| Type | Description | 
|---|---|
| Node.NodeTypeEnum? | The Big Data Service cluster node type. | 
Remarks
Required
Shape
Declaration
[Required(ErrorMessage = "Shape is required.")]
[JsonProperty(PropertyName = "shape")]
public string Shape { get; set; }Property Value
| Type | Description | 
|---|---|
| string | Shape of the node. This has to be specified when starting the cluster. Defaults to wn0 for homogeneous clusters and remains empty for heterogeneous clusters. If provided, all nodes in the node type will adopt the specified shape; otherwise, nodes retain their original shapes. | 
Remarks
Required