com.azure.resourcemanager.network.models.ManagedRuleSet 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 set.
*/
@Fluent
public final class ManagedRuleSet {
/*
* Defines the rule set type to use.
*/
@JsonProperty(value = "ruleSetType", required = true)
private String ruleSetType;
/*
* Defines the version of the rule set to use.
*/
@JsonProperty(value = "ruleSetVersion", required = true)
private String ruleSetVersion;
/*
* Defines the rule group overrides to apply to the rule set.
*/
@JsonProperty(value = "ruleGroupOverrides")
private List ruleGroupOverrides;
/**
* Creates an instance of ManagedRuleSet class.
*/
public ManagedRuleSet() {
}
/**
* Get the ruleSetType property: Defines the rule set type to use.
*
* @return the ruleSetType value.
*/
public String ruleSetType() {
return this.ruleSetType;
}
/**
* Set the ruleSetType property: Defines the rule set type to use.
*
* @param ruleSetType the ruleSetType value to set.
* @return the ManagedRuleSet object itself.
*/
public ManagedRuleSet withRuleSetType(String ruleSetType) {
this.ruleSetType = ruleSetType;
return this;
}
/**
* Get the ruleSetVersion property: Defines the version of the rule set to use.
*
* @return the ruleSetVersion value.
*/
public String ruleSetVersion() {
return this.ruleSetVersion;
}
/**
* Set the ruleSetVersion property: Defines the version of the rule set to use.
*
* @param ruleSetVersion the ruleSetVersion value to set.
* @return the ManagedRuleSet object itself.
*/
public ManagedRuleSet withRuleSetVersion(String ruleSetVersion) {
this.ruleSetVersion = ruleSetVersion;
return this;
}
/**
* Get the ruleGroupOverrides property: Defines the rule group overrides to apply to the rule set.
*
* @return the ruleGroupOverrides value.
*/
public List ruleGroupOverrides() {
return this.ruleGroupOverrides;
}
/**
* Set the ruleGroupOverrides property: Defines the rule group overrides to apply to the rule set.
*
* @param ruleGroupOverrides the ruleGroupOverrides value to set.
* @return the ManagedRuleSet object itself.
*/
public ManagedRuleSet withRuleGroupOverrides(List ruleGroupOverrides) {
this.ruleGroupOverrides = ruleGroupOverrides;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (ruleSetType() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException("Missing required property ruleSetType in model ManagedRuleSet"));
}
if (ruleSetVersion() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException("Missing required property ruleSetVersion in model ManagedRuleSet"));
}
if (ruleGroupOverrides() != null) {
ruleGroupOverrides().forEach(e -> e.validate());
}
}
private static final ClientLogger LOGGER = new ClientLogger(ManagedRuleSet.class);
}