com.microsoft.azure.management.network.AzureFirewallNatRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-network Show documentation
Show all versions of azure-mgmt-network Show documentation
This package contains Microsoft Azure Network Management SDK. A new set of management libraries are now Generally Available. For documentation on how to use the new libraries, please see https://aka.ms/azsdk/java/mgmt
/**
* 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 java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Properties of a NAT rule.
*/
public class AzureFirewallNatRule {
/**
* Name of the NAT rule.
*/
@JsonProperty(value = "name")
private String name;
/**
* Description of the rule.
*/
@JsonProperty(value = "description")
private String description;
/**
* List of source IP addresses for this rule.
*/
@JsonProperty(value = "sourceAddresses")
private List sourceAddresses;
/**
* List of destination IP addresses for this rule. Supports IP ranges,
* prefixes, and service tags.
*/
@JsonProperty(value = "destinationAddresses")
private List destinationAddresses;
/**
* List of destination ports.
*/
@JsonProperty(value = "destinationPorts")
private List destinationPorts;
/**
* Array of AzureFirewallNetworkRuleProtocols applicable to this NAT rule.
*/
@JsonProperty(value = "protocols")
private List protocols;
/**
* The translated address for this NAT rule.
*/
@JsonProperty(value = "translatedAddress")
private String translatedAddress;
/**
* The translated port for this NAT rule.
*/
@JsonProperty(value = "translatedPort")
private String translatedPort;
/**
* The translated FQDN for this NAT rule.
*/
@JsonProperty(value = "translatedFqdn")
private String translatedFqdn;
/**
* List of source IpGroups for this rule.
*/
@JsonProperty(value = "sourceIpGroups")
private List sourceIpGroups;
/**
* Get name of the NAT rule.
*
* @return the name value
*/
public String name() {
return this.name;
}
/**
* Set name of the NAT rule.
*
* @param name the name value to set
* @return the AzureFirewallNatRule object itself.
*/
public AzureFirewallNatRule withName(String name) {
this.name = name;
return this;
}
/**
* Get description of the rule.
*
* @return the description value
*/
public String description() {
return this.description;
}
/**
* Set description of the rule.
*
* @param description the description value to set
* @return the AzureFirewallNatRule object itself.
*/
public AzureFirewallNatRule withDescription(String description) {
this.description = description;
return this;
}
/**
* Get list of source IP addresses for this rule.
*
* @return the sourceAddresses value
*/
public List sourceAddresses() {
return this.sourceAddresses;
}
/**
* Set list of source IP addresses for this rule.
*
* @param sourceAddresses the sourceAddresses value to set
* @return the AzureFirewallNatRule object itself.
*/
public AzureFirewallNatRule withSourceAddresses(List sourceAddresses) {
this.sourceAddresses = sourceAddresses;
return this;
}
/**
* Get list of destination IP addresses for this rule. Supports IP ranges, prefixes, and service tags.
*
* @return the destinationAddresses value
*/
public List destinationAddresses() {
return this.destinationAddresses;
}
/**
* Set list of destination IP addresses for this rule. Supports IP ranges, prefixes, and service tags.
*
* @param destinationAddresses the destinationAddresses value to set
* @return the AzureFirewallNatRule object itself.
*/
public AzureFirewallNatRule withDestinationAddresses(List destinationAddresses) {
this.destinationAddresses = destinationAddresses;
return this;
}
/**
* Get list of destination ports.
*
* @return the destinationPorts value
*/
public List destinationPorts() {
return this.destinationPorts;
}
/**
* Set list of destination ports.
*
* @param destinationPorts the destinationPorts value to set
* @return the AzureFirewallNatRule object itself.
*/
public AzureFirewallNatRule withDestinationPorts(List destinationPorts) {
this.destinationPorts = destinationPorts;
return this;
}
/**
* Get array of AzureFirewallNetworkRuleProtocols applicable to this NAT rule.
*
* @return the protocols value
*/
public List protocols() {
return this.protocols;
}
/**
* Set array of AzureFirewallNetworkRuleProtocols applicable to this NAT rule.
*
* @param protocols the protocols value to set
* @return the AzureFirewallNatRule object itself.
*/
public AzureFirewallNatRule withProtocols(List protocols) {
this.protocols = protocols;
return this;
}
/**
* Get the translated address for this NAT rule.
*
* @return the translatedAddress value
*/
public String translatedAddress() {
return this.translatedAddress;
}
/**
* Set the translated address for this NAT rule.
*
* @param translatedAddress the translatedAddress value to set
* @return the AzureFirewallNatRule object itself.
*/
public AzureFirewallNatRule withTranslatedAddress(String translatedAddress) {
this.translatedAddress = translatedAddress;
return this;
}
/**
* Get the translated port for this NAT rule.
*
* @return the translatedPort value
*/
public String translatedPort() {
return this.translatedPort;
}
/**
* Set the translated port for this NAT rule.
*
* @param translatedPort the translatedPort value to set
* @return the AzureFirewallNatRule object itself.
*/
public AzureFirewallNatRule withTranslatedPort(String translatedPort) {
this.translatedPort = translatedPort;
return this;
}
/**
* Get the translated FQDN for this NAT rule.
*
* @return the translatedFqdn value
*/
public String translatedFqdn() {
return this.translatedFqdn;
}
/**
* Set the translated FQDN for this NAT rule.
*
* @param translatedFqdn the translatedFqdn value to set
* @return the AzureFirewallNatRule object itself.
*/
public AzureFirewallNatRule withTranslatedFqdn(String translatedFqdn) {
this.translatedFqdn = translatedFqdn;
return this;
}
/**
* Get list of source IpGroups for this rule.
*
* @return the sourceIpGroups value
*/
public List sourceIpGroups() {
return this.sourceIpGroups;
}
/**
* Set list of source IpGroups for this rule.
*
* @param sourceIpGroups the sourceIpGroups value to set
* @return the AzureFirewallNatRule object itself.
*/
public AzureFirewallNatRule withSourceIpGroups(List sourceIpGroups) {
this.sourceIpGroups = sourceIpGroups;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy