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

com.azure.resourcemanager.dnsresolver.models.DnsSecurityRuleState Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for DnsResolver Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The DNS Resolver Management Client. Package tag package-2022-07.

There is a newer version: 1.0.0-beta.3
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.dnsresolver.models;

import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;

/**
 * The state of DNS security rule.
 */
public final class DnsSecurityRuleState extends ExpandableStringEnum {
    /**
     * Static value Enabled for DnsSecurityRuleState.
     */
    public static final DnsSecurityRuleState ENABLED = fromString("Enabled");

    /**
     * Static value Disabled for DnsSecurityRuleState.
     */
    public static final DnsSecurityRuleState DISABLED = fromString("Disabled");

    /**
     * Creates a new instance of DnsSecurityRuleState value.
     * 
     * @deprecated Use the {@link #fromString(String)} factory method.
     */
    @Deprecated
    public DnsSecurityRuleState() {
    }

    /**
     * Creates or finds a DnsSecurityRuleState from its string representation.
     * 
     * @param name a name to look for.
     * @return the corresponding DnsSecurityRuleState.
     */
    public static DnsSecurityRuleState fromString(String name) {
        return fromString(name, DnsSecurityRuleState.class);
    }

    /**
     * Gets known DnsSecurityRuleState values.
     * 
     * @return known DnsSecurityRuleState values.
     */
    public static Collection values() {
        return values(DnsSecurityRuleState.class);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy