com.azure.resourcemanager.network.models.OwaspCrsExclusionEntry 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.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* Allow to exclude some variable satisfy the condition for the WAF check.
*/
@Fluent
public final class OwaspCrsExclusionEntry {
/*
* The variable to be excluded.
*/
@JsonProperty(value = "matchVariable", required = true)
private OwaspCrsExclusionEntryMatchVariable matchVariable;
/*
* When matchVariable is a collection, operate on the selector to specify which elements in the collection this exclusion applies to.
*/
@JsonProperty(value = "selectorMatchOperator", required = true)
private OwaspCrsExclusionEntrySelectorMatchOperator selectorMatchOperator;
/*
* When matchVariable is a collection, operator used to specify which elements in the collection this exclusion applies to.
*/
@JsonProperty(value = "selector", required = true)
private String selector;
/*
* The managed rule sets that are associated with the exclusion.
*/
@JsonProperty(value = "exclusionManagedRuleSets")
private List exclusionManagedRuleSets;
/**
* Creates an instance of OwaspCrsExclusionEntry class.
*/
public OwaspCrsExclusionEntry() {
}
/**
* Get the matchVariable property: The variable to be excluded.
*
* @return the matchVariable value.
*/
public OwaspCrsExclusionEntryMatchVariable matchVariable() {
return this.matchVariable;
}
/**
* Set the matchVariable property: The variable to be excluded.
*
* @param matchVariable the matchVariable value to set.
* @return the OwaspCrsExclusionEntry object itself.
*/
public OwaspCrsExclusionEntry withMatchVariable(OwaspCrsExclusionEntryMatchVariable matchVariable) {
this.matchVariable = matchVariable;
return this;
}
/**
* Get the selectorMatchOperator property: When matchVariable is a collection, operate on the selector to specify
* which elements in the collection this exclusion applies to.
*
* @return the selectorMatchOperator value.
*/
public OwaspCrsExclusionEntrySelectorMatchOperator selectorMatchOperator() {
return this.selectorMatchOperator;
}
/**
* Set the selectorMatchOperator property: When matchVariable is a collection, operate on the selector to specify
* which elements in the collection this exclusion applies to.
*
* @param selectorMatchOperator the selectorMatchOperator value to set.
* @return the OwaspCrsExclusionEntry object itself.
*/
public OwaspCrsExclusionEntry
withSelectorMatchOperator(OwaspCrsExclusionEntrySelectorMatchOperator selectorMatchOperator) {
this.selectorMatchOperator = selectorMatchOperator;
return this;
}
/**
* Get the selector property: When matchVariable is a collection, operator used to specify which elements in the
* collection this exclusion applies to.
*
* @return the selector value.
*/
public String selector() {
return this.selector;
}
/**
* Set the selector property: When matchVariable is a collection, operator used to specify which elements in the
* collection this exclusion applies to.
*
* @param selector the selector value to set.
* @return the OwaspCrsExclusionEntry object itself.
*/
public OwaspCrsExclusionEntry withSelector(String selector) {
this.selector = selector;
return this;
}
/**
* Get the exclusionManagedRuleSets property: The managed rule sets that are associated with the exclusion.
*
* @return the exclusionManagedRuleSets value.
*/
public List exclusionManagedRuleSets() {
return this.exclusionManagedRuleSets;
}
/**
* Set the exclusionManagedRuleSets property: The managed rule sets that are associated with the exclusion.
*
* @param exclusionManagedRuleSets the exclusionManagedRuleSets value to set.
* @return the OwaspCrsExclusionEntry object itself.
*/
public OwaspCrsExclusionEntry withExclusionManagedRuleSets(List exclusionManagedRuleSets) {
this.exclusionManagedRuleSets = exclusionManagedRuleSets;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (matchVariable() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException(
"Missing required property matchVariable in model OwaspCrsExclusionEntry"));
}
if (selectorMatchOperator() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException(
"Missing required property selectorMatchOperator in model OwaspCrsExclusionEntry"));
}
if (selector() == null) {
throw LOGGER.atError()
.log(
new IllegalArgumentException("Missing required property selector in model OwaspCrsExclusionEntry"));
}
if (exclusionManagedRuleSets() != null) {
exclusionManagedRuleSets().forEach(e -> e.validate());
}
}
private static final ClientLogger LOGGER = new ClientLogger(OwaspCrsExclusionEntry.class);
}