Show / Hide Table of Contents

Class OpsiConfigurationBasicConfigurationItemSummary

Basic configuration item summary. Value and defaultValue fields will contain the custom value stored in the resource and default value from Ops Insights respectively.

Inheritance
object
OpsiConfigurationConfigurationItemSummary
OpsiConfigurationBasicConfigurationItemSummary
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 OpsiConfigurationBasicConfigurationItemSummary : OpsiConfigurationConfigurationItemSummary

Properties

ApplicableContexts

Declaration
[JsonProperty(PropertyName = "applicableContexts")]
public List<string> ApplicableContexts { get; set; }
Property Value
Type Description
List<string>

List of contexts in Operations Insights where this configuration item is applicable.

DefaultValue

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

Value of configuration item.

Metadata

Declaration
[JsonProperty(PropertyName = "metadata")]
public ConfigurationItemMetadata Metadata { get; set; }
Property Value
Type Description
ConfigurationItemMetadata

Name

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

Name of configuration item.

Value

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

Value of configuration item.

In this article
Back to top