Show / Hide Table of Contents

Class DnsTraceMonitorConfiguration

Request configuration details for the DNS Trace monitor type.

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

Properties

Protocol

Declaration
[JsonProperty(PropertyName = "protocol")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DnsTransportProtocol? Protocol { get; set; }
Property Value
Type Description
DnsTransportProtocol?

Type of protocol.

RecordType

Declaration
[JsonProperty(PropertyName = "recordType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public DnsRecordType? RecordType { get; set; }
Property Value
Type Description
DnsRecordType?

DNS record type.

VerifyResponseContent

Declaration
[JsonProperty(PropertyName = "verifyResponseContent")]
public string VerifyResponseContent { get; set; }
Property Value
Type Description
string

Verify response content against regular expression based string. If response content does not match the verifyResponseContent value, then it will be considered a failure.

In this article
Back to top