Show / Hide Table of Contents

Class UpdateNodeReplaceConfigurationDetails

The information about the NodeReplaceConfiguration

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

Properties

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

This value is the pending duration time to wait for metric emission before triggering node replacement. The value is in minutes.

LevelTypeDetails

Declaration
[JsonProperty(PropertyName = "levelTypeDetails")]
public LevelTypeDetails LevelTypeDetails { get; set; }
Property Value
Type Description
LevelTypeDetails

MetricType

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

In this article
Back to top