Show / Hide Table of Contents

Class MonitorResult

The monitor result for a specific execution.

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

Properties

ExecutionTime

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

The specific point of time when the result of an execution is collected.

MonitorId

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

The OCID of the monitor.

ResultContentType

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

Type of result content. Example: Zip or Raw file.

Remarks

Required

ResultDataSet

Declaration
[JsonProperty(PropertyName = "resultDataSet")]
public List<MonitorResultData> ResultDataSet { get; set; }
Property Value
Type Description
List<MonitorResultData>

Monitor result data set.

ResultType

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

Type of result. Example: har, screenshot, log, network, diagnostics or script.

VantagePoint

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

The name of the public or dedicated vantage point.

In this article
Back to top