Share via


IWithHealthyHttpResponseStatusCodeRangesBeta.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.Update.IUpdate WithHealthyHttpResponseStatusCodeRange (string range);
abstract member WithHealthyHttpResponseStatusCodeRange : string -> Microsoft.Azure.Management.Network.Fluent.ApplicationGatewayProbe.Update.IUpdate
Public Function WithHealthyHttpResponseStatusCodeRange (range As String) As IUpdate

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.Update.IUpdate WithHealthyHttpResponseStatusCodeRange (int from, int to);
abstract member WithHealthyHttpResponseStatusCodeRange : int * int -> Microsoft.Azure.Management.Network.Fluent.ApplicationGatewayProbe.Update.IUpdate
Public Function WithHealthyHttpResponseStatusCodeRange (from As Integer, to As Integer) As IUpdate

Parameters

from
Int32

The lowest number in the range.

to
Int32

The highest number in the range.

Returns

Applies to