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 an Azure Firewall.
/**
* SKU of an Azure Firewall.
*/
public class AzureFirewallSku {
Name of an Azure Firewall SKU. Possible values include: 'AZFW_VNet',
'AZFW_Hub'.
/**
* Name of an Azure Firewall SKU. Possible values include: 'AZFW_VNet',
* 'AZFW_Hub'.
*/
@JsonProperty(value = "name")
private AzureFirewallSkuName name;
Tier of an Azure Firewall. Possible values include: 'Standard'.
/**
* Tier of an Azure Firewall. Possible values include: 'Standard'.
*/
@JsonProperty(value = "tier")
private AzureFirewallSkuTier tier;
Get name of an Azure Firewall SKU. Possible values include: 'AZFW_VNet', 'AZFW_Hub'.
Returns: the name value
/**
* Get name of an Azure Firewall SKU. Possible values include: 'AZFW_VNet', 'AZFW_Hub'.
*
* @return the name value
*/
public AzureFirewallSkuName name() {
return this.name;
}
Set name of an Azure Firewall SKU. Possible values include: 'AZFW_VNet', 'AZFW_Hub'.
Params: - name – the name value to set
Returns: the AzureFirewallSku object itself.
/**
* Set name of an Azure Firewall SKU. Possible values include: 'AZFW_VNet', 'AZFW_Hub'.
*
* @param name the name value to set
* @return the AzureFirewallSku object itself.
*/
public AzureFirewallSku withName(AzureFirewallSkuName name) {
this.name = name;
return this;
}
Get tier of an Azure Firewall. Possible values include: 'Standard'.
Returns: the tier value
/**
* Get tier of an Azure Firewall. Possible values include: 'Standard'.
*
* @return the tier value
*/
public AzureFirewallSkuTier tier() {
return this.tier;
}
Set tier of an Azure Firewall. Possible values include: 'Standard'.
Params: - tier – the tier value to set
Returns: the AzureFirewallSku object itself.
/**
* Set tier of an Azure Firewall. Possible values include: 'Standard'.
*
* @param tier the tier value to set
* @return the AzureFirewallSku object itself.
*/
public AzureFirewallSku withTier(AzureFirewallSkuTier tier) {
this.tier = tier;
return this;
}
}