ConnectionMonitorTestConfiguration Class

Describes a connection monitor test configuration.

Constructor

ConnectionMonitorTestConfiguration(*args: Any, **kwargs: Any)

Variables

Name Description
name
str

The name of the connection monitor test configuration. Required.

test_frequency_sec
int

The frequency of test evaluation, in seconds.

protocol

The protocol to use in test evaluation. Required. Known values are: "Tcp", "Http", and "Icmp".

preferred_ip_version

The preferred IP version to use in test evaluation. The connection monitor may choose to use a different version depending on other parameters. Known values are: "IPv4" and "IPv6".

http_configuration

The parameters used to perform test evaluation over HTTP.

tcp_configuration

The parameters used to perform test evaluation over TCP.

icmp_configuration

The parameters used to perform test evaluation over ICMP.

success_threshold

The threshold for declaring a test successful.

Attributes

http_configuration

The parameters used to perform test evaluation over HTTP.

http_configuration: _models.ConnectionMonitorHttpConfiguration | None

icmp_configuration

The parameters used to perform test evaluation over ICMP.

icmp_configuration: _models.ConnectionMonitorIcmpConfiguration | None

name

The name of the connection monitor test configuration. Required.

name: str

preferred_ip_version

The preferred IP version to use in test evaluation. The connection monitor may choose to use a different version depending on other parameters. Known values are: "IPv4" and "IPv6".

preferred_ip_version: str | _models.PreferredIPVersion | None

protocol

"Tcp", "Http", and "Icmp".

protocol: str | _models.ConnectionMonitorTestConfigurationProtocol

success_threshold

The threshold for declaring a test successful.

success_threshold: _models.ConnectionMonitorSuccessThreshold | None

tcp_configuration

The parameters used to perform test evaluation over TCP.

tcp_configuration: _models.ConnectionMonitorTcpConfiguration | None

test_frequency_sec

The frequency of test evaluation, in seconds.

test_frequency_sec: int | None