Show / Hide Table of Contents

Class MonitoredResourceDetails

Details of the Resource that are part of the Maintenance Window.

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

Properties

Name

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

Name of the monitored resource

Remarks

Required

NumberOfMembers

Declaration
[JsonProperty(PropertyName = "numberOfMembers")]
public int? NumberOfMembers { get; set; }
Property Value
Type Description
int?

Number of members of the resource

ResourceId

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

The OCID of monitored resource part of the Maintenance window.

Remarks

Required

Type

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

Type of the monitored resource

Remarks

Required

In this article
Back to top