Show / Hide Table of Contents

Class MonitoredRegionSummary

Summary information about a MonitoredRegion.

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

Properties

Id

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

The OCID of the MonitoredRegion.

Remarks

Required

LifecycleDetails

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

A message that describes the current state of the MonitoredRegion in more detail. For example, can be used to provide actionable information for a resource in the Failed state.

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(StringEnumConverter))]
public MonitoredRegion.LifecycleStateEnum? LifecycleState { get; set; }
Property Value
Type Description
MonitoredRegion.LifecycleStateEnum?

The current state of the MonitoredRegion.

Remarks

Required

RegionId

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

The Region Identifier of this MonitoredRegion.

Remarks

Required

ResourceAnalyticsInstanceId

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

The OCID of the ResourceAnalyticsInstance associated with this MonitoredRegion.

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>>

System tags for this resource. Each key is predefined and scoped to a namespace.
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 MonitoredRegion was created, in the format defined by RFC 3339.
Example: 2016-08-25T21:10:29.600Z

Remarks

Required

TimeUpdated

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

The date and time the MonitoredRegion was updated, in the format defined by RFC 3339.
Example: 2016-08-25T21:10:29.600Z

In this article
Back to top