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

com.azure.resourcemanager.azurestackhci.models.DeploymentMode Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for AzureStackHci Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure Stack HCI management service. Package tag package-2024-04.

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.azurestackhci.models;

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

/**
 * The deployment mode of EnterpriseCloudEngine(ECE) action for a cluster.
 */
public final class DeploymentMode extends ExpandableStringEnum {
    /**
     * Static value Validate for DeploymentMode.
     */
    public static final DeploymentMode VALIDATE = fromString("Validate");

    /**
     * Static value Deploy for DeploymentMode.
     */
    public static final DeploymentMode DEPLOY = fromString("Deploy");

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy