Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
Code generated by Microsoft (R) AutoRest Code Generator.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.network;
import com.fasterxml.jackson.annotation.JsonProperty;
SKU of a load balancer.
/**
* SKU of a load balancer.
*/
public class LoadBalancerSku {
Name of a load balancer SKU. Possible values include: 'Basic',
'Standard'.
/**
* Name of a load balancer SKU. Possible values include: 'Basic',
* 'Standard'.
*/
@JsonProperty(value = "name")
private LoadBalancerSkuName name;
Get name of a load balancer SKU. Possible values include: 'Basic', 'Standard'.
Returns: the name value
/**
* Get name of a load balancer SKU. Possible values include: 'Basic', 'Standard'.
*
* @return the name value
*/
public LoadBalancerSkuName name() {
return this.name;
}
Set name of a load balancer SKU. Possible values include: 'Basic', 'Standard'.
Params: - name – the name value to set
Returns: the LoadBalancerSku object itself.
/**
* Set name of a load balancer SKU. Possible values include: 'Basic', 'Standard'.
*
* @param name the name value to set
* @return the LoadBalancerSku object itself.
*/
public LoadBalancerSku withName(LoadBalancerSkuName name) {
this.name = name;
return this;
}
}