All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.network.models.EffectiveBaseSecurityAdminRule Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 2.44.0
Show newest version
// 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.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeId;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;

import java.util.List;

/**
 * Network base admin rule.
 */
@JsonTypeInfo(
    use = JsonTypeInfo.Id.NAME,
    property = "kind",
    defaultImpl = EffectiveBaseSecurityAdminRule.class,
    visible = true)
@JsonTypeName("EffectiveBaseSecurityAdminRule")
@JsonSubTypes({
    @JsonSubTypes.Type(name = "Custom", value = EffectiveSecurityAdminRule.class),
    @JsonSubTypes.Type(name = "Default", value = EffectiveDefaultSecurityAdminRule.class) })
@Fluent
public class EffectiveBaseSecurityAdminRule {
    /*
     * Whether the rule is custom or default.
     */
    @JsonTypeId
    @JsonProperty(value = "kind", required = true)
    private EffectiveAdminRuleKind kind;

    /*
     * Resource ID.
     */
    @JsonProperty(value = "id")
    private String id;

    /*
     * A description of the security admin configuration.
     */
    @JsonProperty(value = "configurationDescription")
    private String configurationDescription;

    /*
     * A description of the rule collection.
     */
    @JsonProperty(value = "ruleCollectionDescription")
    private String ruleCollectionDescription;

    /*
     * Groups for rule collection
     */
    @JsonProperty(value = "ruleCollectionAppliesToGroups")
    private List ruleCollectionAppliesToGroups;

    /*
     * Effective configuration groups.
     */
    @JsonProperty(value = "ruleGroups")
    private List ruleGroups;

    /**
     * Creates an instance of EffectiveBaseSecurityAdminRule class.
     */
    public EffectiveBaseSecurityAdminRule() {
        this.kind = EffectiveAdminRuleKind.fromString("EffectiveBaseSecurityAdminRule");
    }

    /**
     * Get the kind property: Whether the rule is custom or default.
     *
     * @return the kind value.
     */
    public EffectiveAdminRuleKind kind() {
        return this.kind;
    }

    /**
     * Get the id property: Resource ID.
     *
     * @return the id value.
     */
    public String id() {
        return this.id;
    }

    /**
     * Set the id property: Resource ID.
     *
     * @param id the id value to set.
     * @return the EffectiveBaseSecurityAdminRule object itself.
     */
    public EffectiveBaseSecurityAdminRule withId(String id) {
        this.id = id;
        return this;
    }

    /**
     * Get the configurationDescription property: A description of the security admin configuration.
     *
     * @return the configurationDescription value.
     */
    public String configurationDescription() {
        return this.configurationDescription;
    }

    /**
     * Set the configurationDescription property: A description of the security admin configuration.
     *
     * @param configurationDescription the configurationDescription value to set.
     * @return the EffectiveBaseSecurityAdminRule object itself.
     */
    public EffectiveBaseSecurityAdminRule withConfigurationDescription(String configurationDescription) {
        this.configurationDescription = configurationDescription;
        return this;
    }

    /**
     * Get the ruleCollectionDescription property: A description of the rule collection.
     *
     * @return the ruleCollectionDescription value.
     */
    public String ruleCollectionDescription() {
        return this.ruleCollectionDescription;
    }

    /**
     * Set the ruleCollectionDescription property: A description of the rule collection.
     *
     * @param ruleCollectionDescription the ruleCollectionDescription value to set.
     * @return the EffectiveBaseSecurityAdminRule object itself.
     */
    public EffectiveBaseSecurityAdminRule withRuleCollectionDescription(String ruleCollectionDescription) {
        this.ruleCollectionDescription = ruleCollectionDescription;
        return this;
    }

    /**
     * Get the ruleCollectionAppliesToGroups property: Groups for rule collection.
     *
     * @return the ruleCollectionAppliesToGroups value.
     */
    public List ruleCollectionAppliesToGroups() {
        return this.ruleCollectionAppliesToGroups;
    }

    /**
     * Set the ruleCollectionAppliesToGroups property: Groups for rule collection.
     *
     * @param ruleCollectionAppliesToGroups the ruleCollectionAppliesToGroups value to set.
     * @return the EffectiveBaseSecurityAdminRule object itself.
     */
    public EffectiveBaseSecurityAdminRule
        withRuleCollectionAppliesToGroups(List ruleCollectionAppliesToGroups) {
        this.ruleCollectionAppliesToGroups = ruleCollectionAppliesToGroups;
        return this;
    }

    /**
     * Get the ruleGroups property: Effective configuration groups.
     *
     * @return the ruleGroups value.
     */
    public List ruleGroups() {
        return this.ruleGroups;
    }

    /**
     * Set the ruleGroups property: Effective configuration groups.
     *
     * @param ruleGroups the ruleGroups value to set.
     * @return the EffectiveBaseSecurityAdminRule object itself.
     */
    public EffectiveBaseSecurityAdminRule withRuleGroups(List ruleGroups) {
        this.ruleGroups = ruleGroups;
        return this;
    }

    /**
     * Validates the instance.
     *
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
        if (ruleCollectionAppliesToGroups() != null) {
            ruleCollectionAppliesToGroups().forEach(e -> e.validate());
        }
        if (ruleGroups() != null) {
            ruleGroups().forEach(e -> e.validate());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy