Show / Hide Table of Contents

Class ConfigurationItemLimitAllowedValueDetails

Allowed value details of configuration item for LIMIT type. Value has to be between minValue and maxValue.

Inheritance
object
ConfigurationItemAllowedValueDetails
ConfigurationItemLimitAllowedValueDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OpsiService.Models
Assembly: OCI.DotNetSDK.Opsi.dll
Syntax
public class ConfigurationItemLimitAllowedValueDetails : ConfigurationItemAllowedValueDetails

Properties

MaxValue

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

Maximum value limit for the configuration item.

MinValue

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

Minimum value limit for the configuration item.

In this article
Back to top