com.azure.resourcemanager.network.models.ManagedRuleGroupOverride 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;
/**
* Defines a managed rule group override setting.
*/
@Fluent
public final class ManagedRuleGroupOverride {
/*
* The managed rule group to override.
*/
@JsonProperty(value = "ruleGroupName", required = true)
private String ruleGroupName;
/*
* List of rules that will be disabled. If none specified, all rules in the group will be disabled.
*/
@JsonProperty(value = "rules")
private List rules;
/**
* Creates an instance of ManagedRuleGroupOverride class.
*/
public ManagedRuleGroupOverride() {
}
/**
* Get the ruleGroupName property: The managed rule group to override.
*
* @return the ruleGroupName value.
*/
public String ruleGroupName() {
return this.ruleGroupName;
}
/**
* Set the ruleGroupName property: The managed rule group to override.
*
* @param ruleGroupName the ruleGroupName value to set.
* @return the ManagedRuleGroupOverride object itself.
*/
public ManagedRuleGroupOverride withRuleGroupName(String ruleGroupName) {
this.ruleGroupName = ruleGroupName;
return this;
}
/**
* Get the rules property: List of rules that will be disabled. If none specified, all rules in the group will be
* disabled.
*
* @return the rules value.
*/
public List rules() {
return this.rules;
}
/**
* Set the rules property: List of rules that will be disabled. If none specified, all rules in the group will be
* disabled.
*
* @param rules the rules value to set.
* @return the ManagedRuleGroupOverride object itself.
*/
public ManagedRuleGroupOverride withRules(List rules) {
this.rules = rules;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (ruleGroupName() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException(
"Missing required property ruleGroupName in model ManagedRuleGroupOverride"));
}
if (rules() != null) {
rules().forEach(e -> e.validate());
}
}
private static final ClientLogger LOGGER = new ClientLogger(ManagedRuleGroupOverride.class);
}