Show / Hide Table of Contents

Class ScriptedRestMonitorConfiguration

Configuration details for the SCRIPTED_REST monitor type.

Inheritance
object
MonitorConfiguration
ScriptedRestMonitorConfiguration
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 ScriptedRestMonitorConfiguration : MonitorConfiguration

Properties

NetworkConfiguration

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

ReqAuthenticationScheme

Declaration
[JsonProperty(PropertyName = "reqAuthenticationScheme")]
[JsonConverter(typeof(ResponseEnumConverter))]
public RequestAuthenticationSchemesForScriptedRest? ReqAuthenticationScheme { get; set; }
Property Value
Type Description
RequestAuthenticationSchemesForScriptedRest?

Request HTTP authentication scheme.

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.

In this article
Back to top