Class BrowserMonitorConfiguration
Configuration details for the BROWSER monitor type.
Inherited Members
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. |