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

com.azure.resourcemanager.resources.models.DenyStatusMode Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.resources.models;

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

/**
 * denyAssignment settings applied to the resource.
 */
public final class DenyStatusMode extends ExpandableStringEnum {
    /**
     * Static value denyDelete for DenyStatusMode.
     */
    public static final DenyStatusMode DENY_DELETE = fromString("denyDelete");

    /**
     * Static value notSupported for DenyStatusMode.
     */
    public static final DenyStatusMode NOT_SUPPORTED = fromString("notSupported");

    /**
     * Static value inapplicable for DenyStatusMode.
     */
    public static final DenyStatusMode INAPPLICABLE = fromString("inapplicable");

    /**
     * Static value denyWriteAndDelete for DenyStatusMode.
     */
    public static final DenyStatusMode DENY_WRITE_AND_DELETE = fromString("denyWriteAndDelete");

    /**
     * Static value removedBySystem for DenyStatusMode.
     */
    public static final DenyStatusMode REMOVED_BY_SYSTEM = fromString("removedBySystem");

    /**
     * Static value none for DenyStatusMode.
     */
    public static final DenyStatusMode NONE = fromString("none");

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy