Class CreateNodeReplaceConfigurationDetails
The information about the NodeReplaceConfiguration
Inherited Members
Namespace: Oci.BdsService.Models
Assembly: OCI.DotNetSDK.Bds.dll
Syntax
public class CreateNodeReplaceConfigurationDetails
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 admin user. |
Remarks
Required
DisplayName
Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
string | A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information. |
DurationInMinutes
Declaration
[Required(ErrorMessage = "DurationInMinutes is required.")]
[JsonProperty(PropertyName = "durationInMinutes")]
public int? DurationInMinutes { get; set; }
Property Value
Type | Description |
---|---|
int? | This value is the minimum period of time to wait before triggering node replacement. The value is in minutes. |
Remarks
Required
LevelTypeDetails
Declaration
[Required(ErrorMessage = "LevelTypeDetails is required.")]
[JsonProperty(PropertyName = "levelTypeDetails")]
public LevelTypeDetails LevelTypeDetails { get; set; }
Property Value
Type | Description |
---|---|
LevelTypeDetails |
Remarks
Required
MetricType
Declaration
[Required(ErrorMessage = "MetricType is required.")]
[JsonProperty(PropertyName = "metricType")]
[JsonConverter(typeof(StringEnumConverter))]
public NodeReplaceConfiguration.MetricTypeEnum? MetricType { get; set; }
Property Value
Type | Description |
---|---|
NodeReplaceConfiguration.MetricTypeEnum? | Type of compute instance health metric to use for node replacement |
Remarks
Required