Show / Hide Table of Contents

Class WorkerMonitorList

Details of the monitor assigned to an On-premise vantage point worker.

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

Properties

DisplayName

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

Unique name that can be edited. The name should not contain any confidential information.

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

Remarks

Required

IsRunNow

Declaration
[JsonProperty(PropertyName = "isRunNow")]
public bool? IsRunNow { get; set; }
Property Value
Type Description
bool?

If isRunNow is enabled, then the monitor will run immediately.

MonitorType

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

Type of monitor.

Remarks

Required

TimeAssigned

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

The time the resource was last assigned to an On-premise vantage point worker, expressed in RFC 3339 timestamp format. Example: 2020-02-12T22:47:12.613Z

In this article
Back to top