@@ -256,7 +256,7 @@ class LoadBalancerHealthCheck(BaseDomain):
256256 Timeout in sec after a try is assumed as timeout
257257 :param retries: int
258258 Retries we perform until we assume a target as unhealthy
259- :param http: LoadBalancerHealtCheckHttp
259+ :param http: LoadBalancerHealthCheckHttp
260260 HTTP Config
261261 """
262262
@@ -267,7 +267,7 @@ def __init__(
267267 interval : int | None = None ,
268268 timeout : int | None = None ,
269269 retries : int | None = None ,
270- http : LoadBalancerHealtCheckHttp | None = None ,
270+ http : LoadBalancerHealthCheckHttp | None = None ,
271271 ):
272272 self .protocol = protocol
273273 self .port = port
@@ -277,8 +277,8 @@ def __init__(
277277 self .http = http
278278
279279
280- class LoadBalancerHealtCheckHttp (BaseDomain ):
281- """LoadBalancerHealtCheckHttp Domain
280+ class LoadBalancerHealthCheckHttp (BaseDomain ):
281+ """LoadBalancerHealthCheckHttp Domain
282282
283283 :param domain: str
284284 Domain name to send in HTTP request. Can be null: In that case we will not send a domain name
@@ -307,6 +307,14 @@ def __init__(
307307 self .tls = tls
308308
309309
310+ LoadBalancerHealtCheckHttp = LoadBalancerHealthCheckHttp
311+ """
312+ Kept for backward compatibility.
313+
314+ Please use ``LoadBalancerHealthCheckHttp`` instead.
315+ """
316+
317+
310318class LoadBalancerTarget (BaseDomain ):
311319 """LoadBalancerTarget Domain
312320
0 commit comments