Show / Hide Table of Contents

Class AddAutoScalingConfigurationDetails

The information about the autoscale configuration.

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

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

DisplayName

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

A user-friendly name. The name does not have to be unique, and it may be changed. Avoid entering confidential information.

IsEnabled

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

Whether the autoscale configuration is enabled.

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?

A node type that is managed by an autoscale configuration. The only supported types are WORKER and COMPUTE_ONLY_WORKER.

Remarks

Required

Policy

Declaration
[JsonProperty(PropertyName = "policy")]
public AutoScalePolicy Policy { get; set; }
Property Value
Type Description
AutoScalePolicy

PolicyDetails

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