Show / Hide Table of Contents

Class AddBlockStorageDetails

The information about added block volumes.

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

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 added to each worker node. All the details needed for attaching the block volume are managed by service itself.

Remarks

Required

ClusterAdminPassword

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

Base-64 encoded password for the cluster (and Cloudera Manager) admin user.

Remarks

Required

NodeType

Declaration
[Required(ErrorMessage = "NodeType is required.")]
[JsonProperty(PropertyName = "nodeType")]
[JsonConverter(typeof(StringEnumConverter))]
public AddBlockStorageDetails.NodeTypeEnum? NodeType { get; set; }
Property Value
Type Description
AddBlockStorageDetails.NodeTypeEnum?

Worker node types.

Remarks

Required

In this article
Back to top