Show / Hide Table of Contents

Class ManagedInstanceAnalyticSummary

A metric emitted by managed instance resource.

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

Properties

Count

Declaration
[Required(ErrorMessage = "Count is required.")]
[JsonProperty(PropertyName = "count")]
public int? Count { get; set; }
Property Value
Type Description
int?

The value of this metric.

Remarks

Required

Dimensions

Declaration
[Required(ErrorMessage = "Dimensions is required.")]
[JsonProperty(PropertyName = "dimensions")]
public Dictionary<string, string> Dimensions { get; set; }
Property Value
Type Description
Dictionary<string, string>

Qualifiers provided in a metric definition. Available dimensions vary by metric namespace. Each dimension takes the form of a key-value pair.
Example: "managedInstanceId": "ocid1.managementagent.123"

Remarks

Required

Name

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

The name of this metric.

Remarks

Required

In this article
Back to top