Compartir a través de


ApplicationGatewayProbe Constructores

Definición

Sobrecargas

ApplicationGatewayProbe()

Inicializa una nueva instancia de la clase ApplicationGatewayProbe.

ApplicationGatewayProbe(String, String, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, ApplicationGatewayProbeHealthResponseMatch, String, Nullable<Int32>, String, String, String)

Inicializa una nueva instancia de la clase ApplicationGatewayProbe.

ApplicationGatewayProbe()

Inicializa una nueva instancia de la clase ApplicationGatewayProbe.

public ApplicationGatewayProbe ();
Public Sub New ()

Se aplica a

ApplicationGatewayProbe(String, String, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Boolean>, Nullable<Boolean>, Nullable<Int32>, ApplicationGatewayProbeHealthResponseMatch, String, Nullable<Int32>, String, String, String)

Inicializa una nueva instancia de la clase ApplicationGatewayProbe.

public ApplicationGatewayProbe (string id = default, string protocol = default, string host = default, string path = default, int? interval = default, int? timeout = default, int? unhealthyThreshold = default, bool? pickHostNameFromBackendHttpSettings = default, bool? pickHostNameFromBackendSettings = default, int? minServers = default, Microsoft.Azure.Management.Network.Models.ApplicationGatewayProbeHealthResponseMatch match = default, string provisioningState = default, int? port = default, string name = default, string etag = default, string type = default);
new Microsoft.Azure.Management.Network.Models.ApplicationGatewayProbe : string * string * string * string * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<bool> * Nullable<bool> * Nullable<int> * Microsoft.Azure.Management.Network.Models.ApplicationGatewayProbeHealthResponseMatch * string * Nullable<int> * string * string * string -> Microsoft.Azure.Management.Network.Models.ApplicationGatewayProbe
Public Sub New (Optional id As String = Nothing, Optional protocol As String = Nothing, Optional host As String = Nothing, Optional path As String = Nothing, Optional interval As Nullable(Of Integer) = Nothing, Optional timeout As Nullable(Of Integer) = Nothing, Optional unhealthyThreshold As Nullable(Of Integer) = Nothing, Optional pickHostNameFromBackendHttpSettings As Nullable(Of Boolean) = Nothing, Optional pickHostNameFromBackendSettings As Nullable(Of Boolean) = Nothing, Optional minServers As Nullable(Of Integer) = Nothing, Optional match As ApplicationGatewayProbeHealthResponseMatch = Nothing, Optional provisioningState As String = Nothing, Optional port As Nullable(Of Integer) = Nothing, Optional name As String = Nothing, Optional etag As String = Nothing, Optional type As String = Nothing)

Parámetros

id
String

Identificador del recurso.

protocol
String

Protocolo utilizado para el sondeo. Entre los valores posibles se incluyen: "Http", "Https", "Tcp", "Tls".

host
String

Nombre de host al que se va a enviar el sondeo.

path
String

Ruta de acceso relativa del sondeo. La ruta de acceso válida comienza desde "/". El sondeo se envía a <Protocol>://<host>:<port><path>.

interval
Nullable<Int32>

Intervalo de sondeo en segundos. Es el intervalo de tiempo entre dos sondeos consecutivos. Los valores aceptables son de 1 segundo a 86400 segundos.

timeout
Nullable<Int32>

Tiempo de espera del sondeo en segundos. Sondeo marcado como erróneo si no se recibe una respuesta válida con este período de tiempo de espera. Los valores aceptables son de 1 segundo a 86400 segundos.

unhealthyThreshold
Nullable<Int32>

Recuento de reintentos de sondeo. El servidor back-end se marca como inactivo después de que el número de errores de sondeo consecutivo alcance UnhealthyThreshold. Los valores aceptables son de 1 segundo a 20.

pickHostNameFromBackendHttpSettings
Nullable<Boolean>

Si se debe seleccionar el encabezado de host de la configuración http de back-end. El valor predeterminado es False.

pickHostNameFromBackendSettings
Nullable<Boolean>

Indicación de si se debe seleccionar la indicación del nombre del servidor de la configuración de back-end para el protocolo Tls. El valor predeterminado es False.

minServers
Nullable<Int32>

Número mínimo de servidores que siempre están marcados como correctos. El valor predeterminado es 0.

match
ApplicationGatewayProbeHealthResponseMatch

Criterio para clasificar una respuesta de sondeo correcta.

provisioningState
String

Estado de aprovisionamiento del recurso de sondeo. Entre los valores posibles se incluyen: "Succeeded", "Updating", "Deleting", "Failed"

port
Nullable<Int32>

Puerto personalizado que se usará para sondear los servidores back-end. El valor válido oscila entre 1 y 65535. En caso de que no se establezca, se usará el puerto de la configuración http. Esta propiedad solo es válida para Standard_v2 y WAF_v2.

name
String

Nombre del sondeo que es único dentro de un Application Gateway.

etag
String

Cadena de solo lectura única que cambia cada vez que se actualiza el recurso.

type
String

Tipo de recurso.

Se aplica a