Show / Hide Table of Contents

Class BasicConfigurationItemMetadata

Basic configuration item metadata.

Inheritance
object
ConfigurationItemMetadata
BasicConfigurationItemMetadata
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 BasicConfigurationItemMetadata : ConfigurationItemMetadata

Properties

DataType

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

Data type of configuration item. Examples: STRING, BOOLEAN, NUMBER

Description

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

Description of configuration item .

DisplayName

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

User-friendly display name for the configuration item.

UnitDetails

Declaration
[JsonProperty(PropertyName = "unitDetails")]
public ConfigurationItemUnitDetails UnitDetails { get; set; }
Property Value
Type Description
ConfigurationItemUnitDetails

ValueInputDetails

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