Show / Hide Table of Contents

Class ManagementAgentProperty

Property item in name/value pair, with optional unit type.

Inheritance
object
ManagementAgentProperty
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ManagementagentService.Models
Assembly: OCI.DotNetSDK.Managementagent.dll
Syntax
public class ManagementAgentProperty

Properties

Name

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

Name of the property

Remarks

Required

Units

Declaration
[JsonProperty(PropertyName = "units")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PropertyUnits? Units { get; set; }
Property Value
Type Description
PropertyUnits?

Unit for the property

Values

Declaration
[Required(ErrorMessage = "Values is required.")]
[JsonProperty(PropertyName = "values")]
public List<string> Values { get; set; }
Property Value
Type Description
List<string>

Values of the property

Remarks

Required

In this article
Back to top