IWithHealthyHttpResponseStatusCodeRangesBeta<ReturnT>.WithHealthyHttpResponseStatusCodeRange Method

Definition

Overloads

WithHealthyHttpResponseStatusCodeRange(String)

Adds the specified range of the backend's HTTP response status codes that are to be considered healthy.

WithHealthyHttpResponseStatusCodeRange(Int32, Int32)

Adds the specified range of the backend's HTTP response status codes that are to be considered healthy.

WithHealthyHttpResponseStatusCodeRange(String)

Adds the specified range of the backend's HTTP response status codes that are to be considered healthy.

public Microsoft.Azure.Management.Network.Fluent.ApplicationGatewayProbe.Definition.IWithAttach<ReturnT> WithHealthyHttpResponseStatusCodeRange (string range);
abstract member WithHealthyHttpResponseStatusCodeRange : string -> Microsoft.Azure.Management.Network.Fluent.ApplicationGatewayProbe.Definition.IWithAttach<'ReturnT>
Public Function WithHealthyHttpResponseStatusCodeRange (range As String) As IWithAttach(Of ReturnT)

Parameters

range
String

A number range expressed in the format "###-###", for example "200-399", which is the default.

Returns

Applies to

WithHealthyHttpResponseStatusCodeRange(Int32, Int32)

Adds the specified range of the backend's HTTP response status codes that are to be considered healthy.

public Microsoft.Azure.Management.Network.Fluent.ApplicationGatewayProbe.Definition.IWithAttach<ReturnT> WithHealthyHttpResponseStatusCodeRange (int from, int to);
abstract member WithHealthyHttpResponseStatusCodeRange : int * int -> Microsoft.Azure.Management.Network.Fluent.ApplicationGatewayProbe.Definition.IWithAttach<'ReturnT>
Public Function WithHealthyHttpResponseStatusCodeRange (from As Integer, to As Integer) As IWithAttach(Of ReturnT)

Parameters

from
Int32

The lowest number in the range.

to
Int32

The highest number in the range.

Returns

Applies to