Show / Hide Table of Contents

Class UpdateMetricExtensionDetails

The information about updating a metric extension resource

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

Properties

CollectionRecurrences

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

Schedule of metric extension should use RFC 5545 format -> recur-rule-part = "FREQ";"INTERVAL" where FREQ rule part identifies the type of recurrence rule. Valid values are "MINUTELY","HOURLY","DAILY" to specify repeating events based on an interval of a minute, an hour and a day or more. Example- FREQ=DAILY;INTERVAL=1

Description

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

Description of the metric extension.

DisplayName

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

Metric Extension resource display name.

MetricList

Declaration
[JsonProperty(PropertyName = "metricList")]
public List<Metric> MetricList { get; set; }
Property Value
Type Description
List<Metric>

List of metrics which are part of this metric extension

QueryProperties

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