Show / Hide Table of Contents

Class GetMonitorResultRequest

Inheritance
object
GetMonitorResultRequest
Implements
IOciRequest
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApmsyntheticsService.Requests
Assembly: OCI.DotNetSDK.Apmsynthetics.dll
Syntax
public class GetMonitorResultRequest : IOciRequest
Examples

Click here to see an example of how to use GetMonitorResult request.

Properties

ApmDomainId

Declaration
[Required(ErrorMessage = "ApmDomainId is required.")]
[HttpConverter(TargetEnum.Query, "apmDomainId")]
public string ApmDomainId { get; set; }
Property Value
Type Description
string

The APM domain ID the request is intended for.

Remarks

Required

ExecutionTime

Declaration
[Required(ErrorMessage = "ExecutionTime is required.")]
[HttpConverter(TargetEnum.Path, "executionTime")]
public string ExecutionTime { get; set; }
Property Value
Type Description
string

The time the object was posted.

Remarks

Required

MonitorId

Declaration
[Required(ErrorMessage = "MonitorId is required.")]
[HttpConverter(TargetEnum.Path, "monitorId")]
public string MonitorId { get; set; }
Property Value
Type Description
string

The OCID of the monitor.

Remarks

Required

OpcRequestId

Declaration
[HttpConverter(TargetEnum.Header, "opc-request-id")]
public string OpcRequestId { get; set; }
Property Value
Type Description
string

Unique identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.

ResultContentType

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

The result content type: zip or raw.

Remarks

Required

ResultType

Declaration
[Required(ErrorMessage = "ResultType is required.")]
[HttpConverter(TargetEnum.Query, "resultType")]
public string ResultType { get; set; }
Property Value
Type Description
string

The result type: har, screenshot, log, network, diagnostics or script.

Remarks

Required

VantagePoint

Declaration
[Required(ErrorMessage = "VantagePoint is required.")]
[HttpConverter(TargetEnum.Query, "vantagePoint")]
public string VantagePoint { get; set; }
Property Value
Type Description
string

The vantagePoint name.

Remarks

Required

Implements

IOciRequest
In this article
Back to top