com.azure.resourcemanager.network.models.AzureFirewallSku Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* SKU of an Azure Firewall.
*/
@Fluent
public final class AzureFirewallSku {
/*
* Name of an Azure Firewall SKU.
*/
@JsonProperty(value = "name")
private AzureFirewallSkuName name;
/*
* Tier of an Azure Firewall.
*/
@JsonProperty(value = "tier")
private AzureFirewallSkuTier tier;
/**
* Creates an instance of AzureFirewallSku class.
*/
public AzureFirewallSku() {
}
/**
* Get the name property: Name of an Azure Firewall SKU.
*
* @return the name value.
*/
public AzureFirewallSkuName name() {
return this.name;
}
/**
* Set the name property: Name of an Azure Firewall SKU.
*
* @param name the name value to set.
* @return the AzureFirewallSku object itself.
*/
public AzureFirewallSku withName(AzureFirewallSkuName name) {
this.name = name;
return this;
}
/**
* Get the tier property: Tier of an Azure Firewall.
*
* @return the tier value.
*/
public AzureFirewallSkuTier tier() {
return this.tier;
}
/**
* Set the tier property: Tier of an Azure Firewall.
*
* @param tier the tier value to set.
* @return the AzureFirewallSku object itself.
*/
public AzureFirewallSku withTier(AzureFirewallSkuTier tier) {
this.tier = tier;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}