Partager via


LoadBalancerConfigurationProperties Class

  • java.lang.Object
    • com.azure.resourcemanager.compute.models.LoadBalancerConfigurationProperties

Implements

public final class LoadBalancerConfigurationProperties
implements JsonSerializable<LoadBalancerConfigurationProperties>

Describes the properties of the load balancer configuration.

Constructor Summary

Constructor Description
LoadBalancerConfigurationProperties()

Creates an instance of LoadBalancerConfigurationProperties class.

Method Summary

Modifier and Type Method and Description
static LoadBalancerConfigurationProperties fromJson(JsonReader jsonReader)

Reads an instance of LoadBalancerConfigurationProperties from the JsonReader.

List<LoadBalancerFrontendIpConfiguration> frontendIpConfigurations()

Get the frontendIpConfigurations property: Specifies the frontend IP to be used for the load balancer.

JsonWriter toJson(JsonWriter jsonWriter)
void validate()

Validates the instance.

LoadBalancerConfigurationProperties withFrontendIpConfigurations(List<LoadBalancerFrontendIpConfiguration> frontendIpConfigurations)

Set the frontendIpConfigurations property: Specifies the frontend IP to be used for the load balancer.

Methods inherited from java.lang.Object

Constructor Details

LoadBalancerConfigurationProperties

public LoadBalancerConfigurationProperties()

Creates an instance of LoadBalancerConfigurationProperties class.

Method Details

fromJson

public static LoadBalancerConfigurationProperties fromJson(JsonReader jsonReader)

Reads an instance of LoadBalancerConfigurationProperties from the JsonReader.

Parameters:

jsonReader - The JsonReader being read.

Returns:

An instance of LoadBalancerConfigurationProperties if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.

Throws:

IOException

- If the deserialized JSON object was missing any required properties.

frontendIpConfigurations

public List frontendIpConfigurations()

Get the frontendIpConfigurations property: Specifies the frontend IP to be used for the load balancer. Only IPv4 frontend IP address is supported. Each load balancer configuration must have exactly one frontend IP configuration.

Returns:

the frontendIpConfigurations value.

toJson

public JsonWriter toJson(JsonWriter jsonWriter)

Parameters:

jsonWriter

Throws:

validate

public void validate()

Validates the instance.

withFrontendIpConfigurations

public LoadBalancerConfigurationProperties withFrontendIpConfigurations(List frontendIpConfigurations)

Set the frontendIpConfigurations property: Specifies the frontend IP to be used for the load balancer. Only IPv4 frontend IP address is supported. Each load balancer configuration must have exactly one frontend IP configuration.

Parameters:

frontendIpConfigurations - the frontendIpConfigurations value to set.

Returns:

the LoadBalancerConfigurationProperties object itself.

Applies to