Show / Hide Table of Contents

Class CreateNodeDetails

The information about the new node.

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

Properties

BlockVolumeSizeInGBs

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

The size of block volume in GB to be attached to a given node. All the details needed for attaching the block volume are managed by service itself.

Remarks

Required

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.

Remarks

Required

ShapeConfig

Declaration
[JsonProperty(PropertyName = "shapeConfig")]
public ShapeConfigDetails ShapeConfig { get; set; }
Property Value
Type Description
ShapeConfigDetails

SubnetId

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

The OCID of the subnet in which the node will be created.

Remarks

Required

In this article
Back to top