Show / Hide Table of Contents

Class RemoveNodesDetails

The information about the list of nodes to be removed.

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

Properties

ClusterAdminPassword

Declaration
[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.

InstanceIds

Declaration
[Required(ErrorMessage = "InstanceIds is required.")]
[JsonProperty(PropertyName = "instanceIds")]
public List<string> InstanceIds { get; set; }
Property Value
Type Description
List<string>

List of instance IDs to be removed.

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 nodes if graceful removal fails.

SecretId

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

The secretId for the clusterAdminPassword.

In this article
Back to top