Show / Hide Table of Contents

Class BrowserMonitorConfiguration

Configuration details for the BROWSER monitor type.

Inheritance
object
MonitorConfiguration
BrowserMonitorConfiguration
Inherited Members
MonitorConfiguration.IsFailureRetried
MonitorConfiguration.DnsConfiguration
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 BrowserMonitorConfiguration : MonitorConfiguration

Properties

IsCertificateValidationEnabled

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

If certificate validation is enabled, then the call will fail in case of certification errors.

IsDefaultSnapshotEnabled

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

If disabled, auto snapshots are not collected.

NetworkConfiguration

Declaration
[JsonProperty(PropertyName = "networkConfiguration")]
public NetworkConfiguration NetworkConfiguration { get; set; }
Property Value
Type Description
NetworkConfiguration

VerifyResponseCodes

Declaration
[JsonProperty(PropertyName = "verifyResponseCodes")]
public List<string> VerifyResponseCodes { get; set; }
Property Value
Type Description
List<string>

Expected HTTP response codes. For status code range, set values such as 2xx, 3xx.

VerifyTexts

Declaration
[JsonProperty(PropertyName = "verifyTexts")]
public List<VerifyText> VerifyTexts { get; set; }
Property Value
Type Description
List<VerifyText>

Verifies all the search strings present in the response. If any search string is not present in the response, then it will be considered as a failure.

In this article
Back to top