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

com.azure.resourcemanager.securityinsights.models.DeploymentState Maven / Gradle / Ivy

Go to download

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

The 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.securityinsights.models;

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

/**
 * The current state of the deployment.
 */
public final class DeploymentState extends ExpandableStringEnum {
    /**
     * Static value In_Progress for DeploymentState.
     */
    public static final DeploymentState IN_PROGRESS = fromString("In_Progress");

    /**
     * Static value Completed for DeploymentState.
     */
    public static final DeploymentState COMPLETED = fromString("Completed");

    /**
     * Static value Queued for DeploymentState.
     */
    public static final DeploymentState QUEUED = fromString("Queued");

    /**
     * Static value Canceling for DeploymentState.
     */
    public static final DeploymentState CANCELING = fromString("Canceling");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy