com.azure.resourcemanager.network.models.FirewallPolicyNatRuleCollection 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;
import com.fasterxml.jackson.annotation.JsonTypeId;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import java.util.List;
/**
* Firewall Policy NAT Rule Collection.
*/
@JsonTypeInfo(
use = JsonTypeInfo.Id.NAME,
property = "ruleCollectionType",
defaultImpl = FirewallPolicyNatRuleCollection.class,
visible = true)
@JsonTypeName("FirewallPolicyNatRuleCollection")
@Fluent
public final class FirewallPolicyNatRuleCollection extends FirewallPolicyRuleCollection {
/*
* The type of the rule collection.
*/
@JsonTypeId
@JsonProperty(value = "ruleCollectionType", required = true)
private FirewallPolicyRuleCollectionType ruleCollectionType
= FirewallPolicyRuleCollectionType.FIREWALL_POLICY_NAT_RULE_COLLECTION;
/*
* The action type of a Nat rule collection.
*/
@JsonProperty(value = "action")
private FirewallPolicyNatRuleCollectionAction action;
/*
* List of rules included in a rule collection.
*/
@JsonProperty(value = "rules")
private List rules;
/**
* Creates an instance of FirewallPolicyNatRuleCollection class.
*/
public FirewallPolicyNatRuleCollection() {
}
/**
* Get the ruleCollectionType property: The type of the rule collection.
*
* @return the ruleCollectionType value.
*/
@Override
public FirewallPolicyRuleCollectionType ruleCollectionType() {
return this.ruleCollectionType;
}
/**
* Get the action property: The action type of a Nat rule collection.
*
* @return the action value.
*/
public FirewallPolicyNatRuleCollectionAction action() {
return this.action;
}
/**
* Set the action property: The action type of a Nat rule collection.
*
* @param action the action value to set.
* @return the FirewallPolicyNatRuleCollection object itself.
*/
public FirewallPolicyNatRuleCollection withAction(FirewallPolicyNatRuleCollectionAction action) {
this.action = action;
return this;
}
/**
* Get the rules property: List of rules included in a rule collection.
*
* @return the rules value.
*/
public List rules() {
return this.rules;
}
/**
* Set the rules property: List of rules included in a rule collection.
*
* @param rules the rules value to set.
* @return the FirewallPolicyNatRuleCollection object itself.
*/
public FirewallPolicyNatRuleCollection withRules(List rules) {
this.rules = rules;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public FirewallPolicyNatRuleCollection withName(String name) {
super.withName(name);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public FirewallPolicyNatRuleCollection withPriority(Integer priority) {
super.withPriority(priority);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
super.validate();
if (action() != null) {
action().validate();
}
if (rules() != null) {
rules().forEach(e -> e.validate());
}
}
}