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

com.azure.resourcemanager.security.models.SecurityIssue 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 severity to relate to the assessments generated by this Recommendation.
 */
public final class SecurityIssue extends ExpandableStringEnum {
    /**
     * Static value Vulnerability for SecurityIssue.
     */
    public static final SecurityIssue VULNERABILITY = fromString("Vulnerability");

    /**
     * Static value ExcessivePermissions for SecurityIssue.
     */
    public static final SecurityIssue EXCESSIVE_PERMISSIONS = fromString("ExcessivePermissions");

    /**
     * Static value AnonymousAccess for SecurityIssue.
     */
    public static final SecurityIssue ANONYMOUS_ACCESS = fromString("AnonymousAccess");

    /**
     * Static value NetworkExposure for SecurityIssue.
     */
    public static final SecurityIssue NETWORK_EXPOSURE = fromString("NetworkExposure");

    /**
     * Static value TrafficEncryption for SecurityIssue.
     */
    public static final SecurityIssue TRAFFIC_ENCRYPTION = fromString("TrafficEncryption");

    /**
     * Static value BestPractices for SecurityIssue.
     */
    public static final SecurityIssue BEST_PRACTICES = fromString("BestPractices");

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

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy