Show / Hide Table of Contents

Class DefinedMonitoringTemplateSummary

Summary information about defined Monitoring Template for specified resourceType.

Inheritance
object
DefinedMonitoringTemplateSummary
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 DefinedMonitoringTemplateSummary

Properties

CompositeType

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

Type of composite resource type OCID like EBS/PEOPLE_SOFT.

DefinedAlarmConditions

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

Defined Monitoring template alarm conditions

Remarks

Required

DisplayName

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

The name of the definedMonitoringTemplate.

Remarks

Required

Id

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

The OCID of the definedMonitoringTemplate.

Remarks

Required

Namespace

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

The stack monitoring service or application emitting the metric that is evaluated by the alarm.

Remarks

Required

ResourceType

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

The resource types OCID.

Remarks

Required

SystemTags

Declaration
[JsonProperty(PropertyName = "systemTags")]
public Dictionary<string, Dictionary<string, object>> SystemTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Usage of system tag keys. These predefined keys are scoped to namespaces. Example: {"orcl-cloud": {"free-tier-retained": "true"}}

TimeCreated

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

The date and time the monitoringTemplate was created. Format defined by RFC3339.

Remarks

Required

TimeUpdated

Declaration
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

The date and time the monitoringTemplate was updated. Format defined by RFC3339.

In this article
Back to top