Show / Hide Table of Contents

Class AddUtilityNodesDetails

The information about added utility nodes.

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

Properties

BlockVolumeSizeInGBs

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

The size of block volume in GB to be attached to the given node. It's a read-only property.

ClusterAdminPassword

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

Base-64 encoded Cluster Admin Password for cluster admin user.

Remarks

Required

NumberOfUtilityNodes

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

Number of additional utility nodes for the cluster.

Remarks

Required

Shape

Declaration
[JsonProperty(PropertyName = "shape")]
public string Shape { get; set; }
Property Value
Type Description
string

Shape of the node. It's a read-only property derived from existing Utility node.

ShapeConfig

Declaration
[JsonProperty(PropertyName = "shapeConfig")]
public ShapeConfigDetails ShapeConfig { get; set; }
Property Value
Type Description
ShapeConfigDetails
In this article
Back to top