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

com.azure.resourcemanager.security.models.StatusName Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for Security Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. API spec for Microsoft.Security (Azure Security Center) resource provider. Package tag package-composite-v3.

There is a newer version: 1.0.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.security.models;

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

/**
 * The status of the health report.
 */
public final class StatusName extends ExpandableStringEnum {
    /**
     * Static value Healthy for StatusName.
     */
    public static final StatusName HEALTHY = fromString("Healthy");

    /**
     * Static value NotHealthy for StatusName.
     */
    public static final StatusName NOT_HEALTHY = fromString("NotHealthy");

    /**
     * Static value NotApplicable for StatusName.
     */
    public static final StatusName NOT_APPLICABLE = fromString("NotApplicable");

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy