LoadBalancer.DefinitionStages.WithProbe Interface

public static interface LoadBalancer.DefinitionStages.WithProbe

The stage of the load balancer definition allowing to add a load balancing probe.

Method Summary

Modifier and Type Method and Description
abstract Blank<WithCreate> defineHttpProbe(String name)

Begins the definition of a new HTTP probe to add to the load balancer.

abstract Blank<WithCreate> defineHttpsProbe(String name)

Begins the definition of a new HTTPS probe to add to the load balancer.

abstract Blank<WithCreate> defineTcpProbe(String name)

Begins the definition of a new TCP probe to add to the load balancer.

Method Details

defineHttpProbe

public abstract LoadBalancerHttpProbe.DefinitionStages.Blank defineHttpProbe(String name)

Begins the definition of a new HTTP probe to add to the load balancer.

Parameters:

name - the name of the probe

Returns:

the first stage of the new probe definition

defineHttpsProbe

public abstract LoadBalancerHttpProbe.DefinitionStages.Blank defineHttpsProbe(String name)

Begins the definition of a new HTTPS probe to add to the load balancer.

Parameters:

name - the name of the probe

Returns:

the first stage of the new probe definition

defineTcpProbe

public abstract LoadBalancerTcpProbe.DefinitionStages.Blank defineTcpProbe(String name)

Begins the definition of a new TCP probe to add to the load balancer.

Parameters:

name - the name of the probe

Returns:

the first stage of the new probe definition

Applies to