Show / Hide Table of Contents

Class UpdateAutoScalingConfigurationDetails

The information about the autoscale configuration.

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

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.

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
[JsonProperty(PropertyName = "isEnabled")]
public bool? IsEnabled { get; set; }
Property Value
Type Description
bool?

Whether the autoscale configuration is enabled.

Policy

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

PolicyDetails

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