Show / Hide Table of Contents

Class NodeTypeShapeConfig

Shape configuration at node type level. Start cluster will start all nodes as is if no config is specified.

Inheritance
object
NodeTypeShapeConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.BdsService.Models
Assembly: OCI.DotNetSDK.Bds.dll
Syntax
public class NodeTypeShapeConfig

Properties

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

In this article
Back to top