Show / Hide Table of Contents

Class ListHttpProbeResultsRequest

Inheritance
object
ListHttpProbeResultsRequest
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.HealthchecksService.Requests
Assembly: OCI.DotNetSDK.Healthchecks.dll
Syntax
public class ListHttpProbeResultsRequest : IOciRequest
Examples

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

Properties

Limit

Declaration
[HttpConverter(TargetEnum.Query, "limit")]
public int? Limit { get; set; }
Property Value
Type Description
int?

The maximum number of items to return in a paginated "List" call.

OpcRequestId

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

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

Page

Declaration
[HttpConverter(TargetEnum.Query, "page")]
public string Page { get; set; }
Property Value
Type Description
string

The value of the opc-next-page response header from the previous "List" call.

ProbeConfigurationId

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

The OCID of a monitor or on-demand probe.

Remarks

Required

SortOrder

Declaration
[HttpConverter(TargetEnum.Query, "sortOrder")]
public ListHttpProbeResultsRequest.SortOrderEnum? SortOrder { get; set; }
Property Value
Type Description
ListHttpProbeResultsRequest.SortOrderEnum?

Controls the sort order of results.

StartTimeGreaterThanOrEqualTo

Declaration
[HttpConverter(TargetEnum.Query, "startTimeGreaterThanOrEqualTo")]
public double StartTimeGreaterThanOrEqualTo { get; set; }
Property Value
Type Description
double

Returns results with a startTime equal to or greater than the specified value.

StartTimeLessThanOrEqualTo

Declaration
[HttpConverter(TargetEnum.Query, "startTimeLessThanOrEqualTo")]
public double StartTimeLessThanOrEqualTo { get; set; }
Property Value
Type Description
double

Returns results with a startTime equal to or less than the specified value.

Target

Declaration
[HttpConverter(TargetEnum.Query, "target")]
public string Target { get; set; }
Property Value
Type Description
string

Filters results that match the target.

Implements

IOciRequest
In this article
Back to top