Show / Hide Table of Contents

Class RemoveNodeDetails

The information about node to be removed.

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

Properties

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

IsForceRemoveEnabled

Declaration
[JsonProperty(PropertyName = "isForceRemoveEnabled")]
public bool? IsForceRemoveEnabled { get; set; }
Property Value
Type Description
bool?

Boolean flag specifying whether or not to force remove node if graceful removal fails.

NodeId

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

OCID of the node to be removed.

Remarks

Required

In this article
Back to top